home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 January: Mac OS SDK / Dev.CD Jan 98 SDK1.toast / Development Kits (Disc 1) / QuickDraw 3D / Samples / SampleCode / BoxMooV / headers / BoxMooV_event.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-14  |  524 b   |  24 lines  |  [TEXT/CWIE]

  1. /*  event.h                                                                        
  2.  
  3.     This contains all the code for routing and handling events.
  4.                                                                                     
  5.     Michael Bishop - August 21 1996                                                    
  6.     Nick Thompson
  7.     (c)1994-96 Apple computer Inc., All Rights Reserved                                
  8.  
  9. */
  10.  
  11. #ifndef _EVENT_H_
  12. #define _EVENT_H_
  13.  
  14. #include    <Events.h>
  15.  
  16. void     Event_HandleKeyPress(EventRecord *event) ;
  17. void     Event_HandleOSEvent(EventRecord *event) ;
  18. void    Event_DoOSEvent(EventRecord theEvent);
  19. void    Event_DoSuspendResume(EventRecord theEvent);
  20. void    Event_DoNull(void);
  21.  
  22. #endif
  23.  
  24.